home *** CD-ROM | disk | FTP | other *** search
- on RandRadio
- set n to the number of cast "startRadiofeedback.snd" - 1
- set Tot to 28
- set SndNum to random(Tot) + n
- puppetSound(1, SndNum)
- end
-
- on JumpPage n
- global NowBPage
- set NowBPage to n
- RandRadio()
- go(string(n))
- end
-
- on goNowPage n
- global NowBPage
- RandRadio()
- go(string(NowBPage))
- end
-
- on PutAway
- puppetSound(0)
- go("exit")
- end
-
- on BookHelp
- RandRadio()
- go("help")
- end
-
- on initbook n
- global NowBPage, BPageMax
- set the immediate of sprite n to 1
- set NowBPage to 1
- set BPageMax to n
- end
-
- on PageUp
- global NowBPage, BPageMax
- if NowBPage = BPageMax then
- exit
- else
- set NowBPage to NowBPage + 1
- end if
- RandRadio()
- go(string(NowBPage))
- end
-
- on LastPage
- global NowBPage, BPageMax
- RandRadio()
- go(string(BPageMax))
- set NowBPage to BPageMax
- end
-
- on FirstPage
- global NowBPage, BPageMax
- RandRadio()
- go("1")
- set NowBPage to 1
- end
-
- on PageDN
- global NowBPage, BPageMax
- if NowBPage = 1 then
- exit
- else
- set NowBPage to NowBPage - 1
- end if
- RandRadio()
- go(string(NowBPage))
- end
-